home *** CD-ROM | disk | FTP | other *** search
/ 74.208.221.89 / 74.208.221.89.zip / 74.208.221.89 / stores - Copy.ascx < prev    next >
Text File  |  2015-03-14  |  1KB  |  21 lines

  1.   <!-- PAGE -->
  2.         <section class="page-section">
  3.             <div class="container">
  4.                 <h2 class="section-title"><span>STORES</span></h2>
  5.                 <div class="partners-carousel">
  6.                     <div class="owl-carousel" id="partners">
  7.                        <%
  8.                            mycon.con("Select * from lk_stores order by id desc", 1, 1)
  9.                            While mycon.sql1.Read
  10.                                mycon.con("Select image from lk_images where imgtype = 'Store-Logo' AND opt = '" & mycon.sql1("id") & "'", 1, 2)
  11.                            %>
  12.                          <div><a href="#"><img src="mimages/<%= Trim(mycon.Temp1)%>" alt="<%= UCase(mycon.sql1("storename"))%>"/></a></div>
  13.                        <%
  14.                        End While
  15.                        mycon.sql1.Close()
  16.                             %>
  17.                     </div>
  18.                 </div>
  19.             </div>
  20.         </section>
  21.         <!-- /PAGE -->